home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue51 / Observer / FObserver_Edit.dfm / FObserver_Edit.txt
Encoding:
Text File  |  1999-10-08  |  1.8 KB  |  104 lines

  1. object FormObserverEdit: TFormObserverEdit
  2.   Left = 320
  3.   Top = 355
  4.   BorderStyle = bsDialog
  5.   Caption = 'Edit'
  6.   ClientHeight = 91
  7.   ClientWidth = 336
  8.   Color = clBtnFace
  9.   Constraints.MaxHeight = 118
  10.   Constraints.MaxWidth = 344
  11.   Constraints.MinHeight = 118
  12.   Constraints.MinWidth = 344
  13.   Font.Charset = DEFAULT_CHARSET
  14.   Font.Color = clWindowText
  15.   Font.Height = -11
  16.   Font.Name = 'MS Sans Serif'
  17.   Font.Style = []
  18.   OldCreateOrder = False
  19.   Position = poDefaultPosOnly
  20.   OnCreate = FormCreate
  21.   PixelsPerInch = 96
  22.   TextHeight = 13
  23.   object Label4: TLabel
  24.     Left = 4
  25.     Top = 8
  26.     Width = 39
  27.     Height = 13
  28.     Caption = '&Quantity'
  29.   end
  30.   object Label6: TLabel
  31.     Left = 4
  32.     Top = 36
  33.     Width = 60
  34.     Height = 13
  35.     Caption = '&Current price'
  36.   end
  37.   object Label7: TLabel
  38.     Left = 4
  39.     Top = 64
  40.     Width = 63
  41.     Height = 13
  42.     Caption = 'Current value'
  43.   end
  44.   object btnDone: TButton
  45.     Left = 252
  46.     Top = 60
  47.     Width = 75
  48.     Height = 25
  49.     Cancel = True
  50.     Caption = '&Done'
  51.     Default = True
  52.     ModalResult = 1
  53.     TabOrder = 0
  54.     OnClick = btnDoneClick
  55.   end
  56.   object eValue: TEdit
  57.     Left = 120
  58.     Top = 60
  59.     Width = 81
  60.     Height = 21
  61.     Enabled = False
  62.     TabOrder = 1
  63.     Text = 'eValue'
  64.   end
  65.   object ePrice: TEdit
  66.     Left = 120
  67.     Top = 32
  68.     Width = 81
  69.     Height = 21
  70.     TabOrder = 2
  71.     Text = 'ePrice'
  72.   end
  73.   object eQty: TEdit
  74.     Left = 120
  75.     Top = 4
  76.     Width = 81
  77.     Height = 21
  78.     TabOrder = 3
  79.     Text = 'eQty'
  80.   end
  81.   object sbPrice: TScrollBar
  82.     Left = 208
  83.     Top = 34
  84.     Width = 121
  85.     Height = 16
  86.     LargeChange = 100
  87.     Max = 10000
  88.     PageSize = 0
  89.     TabOrder = 4
  90.     OnChange = sbPriceChange
  91.   end
  92.   object sbQty: TScrollBar
  93.     Left = 208
  94.     Top = 6
  95.     Width = 121
  96.     Height = 16
  97.     LargeChange = 10
  98.     Max = 1000
  99.     PageSize = 0
  100.     TabOrder = 5
  101.     OnChange = sbQtyChange
  102.   end
  103. end
  104.